home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Conic Sections 0.9.2 / Include / Angle.h < prev    next >
Encoding:
Text File  |  1997-04-27  |  340 b   |  18 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __ANGLE_H
  5. #define __ANGLE_H
  6.  
  7. class TAngle {
  8. protected:
  9.     float mAngle, mSinAngle, mCosAngle;
  10. public:
  11.     TAngle( float );
  12.     float GetAngle() {return(mAngle);};
  13.     void SetAngle( float );
  14.     float GetSinAngle() {return(mSinAngle);};
  15.     float GetCosAngle() {return(mCosAngle);};
  16. };
  17.  
  18. #endif